home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d17 / prtfile.arc / PRTFILE.DOC < prev    next >
Text File  |  1987-11-12  |  2KB  |  43 lines

  1. DOCUMENTATION FOR:
  2.  
  3. PRTFILE  COM    14136  11-12-87  10:34a
  4. PRTF     COM    14118  11-12-87  10:34a
  5. PRTF     PAS    10578  11-12-87  10:33a
  6. PRTFILE  PAS     9950  11-12-87  10:30a
  7.  
  8.      These programs print text files on your printer.  They are
  9. better than PRINT or COPY <filename> PRN: because they
  10.  
  11.   -  Break the text file into pages, with a page number and the
  12.      system date and time at the top of each page.
  13.  
  14.   -  Let you start and stop at a particular page.
  15.  
  16.   -  Let you print a descriptive header or title on each page.
  17.  
  18.   -  Eject to a new page when they encounter a formfeed character
  19.      (chr(12) or Ctrl-L) in the text.
  20.  
  21.   -  Can print single, double, triple, etc. spaced.
  22.  
  23.   -  Can indent the left margin.
  24.  
  25.      Running them is pretty self-explanatory.  PRTFILE makes you
  26. enter a file name after you start the program.  When it is done
  27. printing it asks you for another file name.  Enter a null file
  28. name or type Ctrl-C to quit.  PRTF reads the file names from the
  29. command line, so you can do PRTF <file1> <file2> <file3>, etc. 
  30. If you don't enter any file names on the command line, PRTF asks
  31. you for one.
  32.  
  33.      You can enter a descriptive title for each file in PRTFILE
  34. but not in PRTF.  The title line automatically includes the
  35. system date and time.  You can run PRTF from a batch file; it
  36. quits when it has printed all its files.
  37.  
  38.      Use these programs with plain ASCII text -- no formatting
  39. commands or high bits, please.  The only non-printable characters
  40. they know about are Carriage Return, Line Feed, Tab and Form
  41. Feed.
  42.  
  43.                  Bill Meacham, 1004 Elm Street, Austin, Tx  78703